home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / flying-6.11 / goal.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-30  |  319 b   |  24 lines

  1. #ifndef _goal_h
  2. #define _goal_h
  3.  
  4. #ifndef _wall_h
  5. #    include "wall.h"
  6. #endif
  7.  
  8. class Vec2;
  9.  
  10.  
  11. class Goal : public Wall {
  12.     public:
  13.         Goal( const Vec2 &v1, const Vec2 &v2 );
  14.         virtual ~Goal();
  15.  
  16.         virtual void Info();
  17.  
  18.     protected:
  19. //        virtual Real HitFromBall( Ball *b );
  20.         virtual void CollideWithBall( Ball *b );
  21. };
  22.  
  23. #endif
  24.